home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / global-one-water.swf / scripts / DefineSprite_431 / frame_1 / DoAction_3.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  282 b   |  17 lines

  1. name_txt.onSetFocus = function()
  2. {
  3.    Key.addListener(name_txt);
  4. };
  5. name_txt.onKillFocus = function()
  6. {
  7.    Key.removeListener(name_txt);
  8. };
  9. name_txt.onKeyDown = function()
  10. {
  11.    if(Key.getCode() == 13)
  12.    {
  13.       Key.removeListener(this);
  14.       createUser();
  15.    }
  16. };
  17.